Sample Presentation API 2.1 Manifest

{
"@context": "http://iiif.io/api/presentation/2/context.json",
"@id": "http://example.org/iiif/book1/manifest",
"@type": "sc:Manifest",
"label": "A Thing",
"sequences": [
{
"@id": "http://example.org/iiif/book1/sequence/normal",
"@type": "sc:Sequence",
"label": "Default",
"canvases": [
{
"@id": "http://example.org/iiif/book1/canvas/p1",
"@type": "sc:Canvas",
"label": "p. 1",
"height": 1000,
"width": 750,
"thumbnail" : {
"@id" : "http://example.org/iiif/book1/canvas/p1/thumb.jpg",
"@type": "dctypes:Image",
"height": 200,
"width": 150
},
"images": [ // A list of Annotations !
{
"@id": "http://example.org/iiif/book1/annotation/p0001-image",
"@type": "oa:Annotation",
"motivation": "sc:painting",
"resource": {
"@id": "http://example.org/iiif/book1/res/page1.jpg",
"@type": "dctypes:Image",
"format": "image/jpeg",
"service": {
"@context": "http://iiif.io/api/image/2/context.json",
"@id": "http://example.org/images/book1-page1",
"profile": "http://iiif.io/api/image/2/level2.json"
},
"height":2000,
"width":1500
},
"on": "http://example.org/iiif/book1/canvas/p1"
}
],
"otherContent": [ // A list of (lists of) Annotations!
{
"@id": "http://example.org/iiif/book1/list/p1",
"@type": "sc:AnnotationList"
}
]
}
]
}
]
}